-
Notifications
You must be signed in to change notification settings - Fork 396
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix offheap guard for OMR #7513
base: master
Are you sure you want to change the base?
Conversation
Jenkins build plinux,aix |
@midronij : please see the CI build failures |
Use OMR_GC_SPARSE_HEAP_ALLOCATION instead of J9VM_GC_ENABLE_SPARSE_HEAP_ALLOCATION in setmemoryEvaluator. Signed-off-by: midronij <[email protected]>
d3e5330
to
60e18e3
Compare
Jenkins build plinux,aix |
I believe the CI failures are happening because my change is dependent on this PR: eclipse-openj9/openj9#20461. I've updated the title/description accordingly |
There should not ever be dependancy from OMR code on J9 (or potentially any other downstream project). OMR should be able to compile standalone. You might be missing some 'empty' methods in OMR that J9 fully implement |
for the failures of missing compressObjectReferences, follow an example of contiguousArrayHeaderSizeInBytes() |
Use
OMR_GC_SPARSE_HEAP_ALLOCATION
instead ofJ9VM_GC_ENABLE_SPARSE_HEAP_ALLOCATION
insetmemoryEvaluator()
.Depends on eclipse-openj9/openj9#20461